home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Sound / Amster / Source / include / network.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-12-13  |  553 b   |  31 lines

  1. /*
  2. ** Amster
  3. **
  4. ** This program is free software; you can redistribute it and/or
  5. ** modify it under the terms of the GNU General Public License.
  6. **
  7. ** socket includes
  8. */
  9.  
  10. #include <proto/exec.h>
  11.  
  12. #ifdef __GNUC__
  13. #ifdef __MORPHOS__
  14. #include <ppcinline/socket.h>
  15. #else
  16. #include <inline/socket.h>
  17. #endif
  18. #else
  19. #include <proto/socket.h>
  20. #endif
  21.  
  22. #include <netdb.h>
  23. #include <sys/time.h>
  24. #include <sys/socket.h>
  25. #include <sys/ioctl.h>
  26. #include <netinet/tcp.h>
  27. #include <netinet/in.h>
  28. #include <bsdsocket/socketbasetags.h>
  29. #include <errno.h>
  30. #include <time.h>
  31.